home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n07.arc / STRING1.BAS < prev    next >
BASIC Source File  |  1989-03-13  |  132b  |  8 lines

  1. DEFINT A-Z
  2. FOR i = 1 TO n
  3.   IF search$ = array$(i) THEN
  4.     PRINT search$; " found at element"; i
  5.     EXIT FOR
  6.   END IF
  7. NEXT
  8.